home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue51 / Alfresco / CvtSingle.dpr next >
Encoding:
Text File  |  1999-10-03  |  227 b   |  16 lines

  1. program CvtSingle;
  2.  
  3. {$APPTYPE CONSOLE}
  4.  
  5. uses
  6.   Forms,
  7.   CvtSingleUnit in 'CvtSingleUnit.pas' {Form1};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.